home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / pascal / tch_tpas.zip / PROG2A.PAS < prev    next >
Pascal/Delphi Source File  |  1986-04-05  |  896b  |  21 lines

  1.  PROGRAM PROG2A;
  2.  {  Print a quick reference chart to accompany
  3.     TURBO-LESSON 2.
  4.  }
  5.  BEGIN
  6.    WriteLn(Lst,'     EDITOR - CURSOR MOVEMENT');
  7.    WriteLn(Lst);
  8.    WriteLn(Lst,'Left-arrow       Left one character');
  9.    WriteLn(Lst,'Right-arrow      Right one character');
  10.    WriteLn(Lst,'Ctrl-Left-arrow  Left one word');
  11.    WriteLn(Lst,'Ctrl-Right-arrow Right one word');
  12.    WriteLn(Lst,'Home             Left end of current line');
  13.    WriteLn(Lst,'End              Right end of current line');
  14.    WriteLn(Lst,'Ctrl-Home        Top of current screen');
  15.    WriteLn(Lst,'Ctrl-End         Bottom of current screen');
  16.    WriteLn(Lst,'PgUp             Previous screen');
  17.    WriteLn(Lst,'PgDn             Next screen');
  18.    WriteLn(Lst,'Ctrl-PgUp        Beginning of file');
  19.    WriteLn(Lst,'Ctrl-PgDn        End of file');
  20. END.
  21.